home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Tutorial / Cookbook / 15.scrollView / DocView.m < prev    next >
Text File  |  1995-06-12  |  409b  |  28 lines

  1. #import "DocView.h"
  2.  
  3. #import <appkit/Control.h>
  4. #import <dpsclient/wraps.h>
  5.  
  6. @implementation DocView
  7.  
  8. +newFrame:(const NXRect *)tF
  9. {
  10.     self = [super newFrame:tF];
  11.            return self;
  12. }
  13.  
  14. - drawSelf:(NXRect*)r :(int)c
  15. {
  16.     PSsetgray(1.0);
  17.     NXRectFill(r);
  18.     PSsetgray(0.0);
  19.     PSsetlinewidth(4.);
  20.     PSnewpath();
  21.     PSmoveto(50.0, 50.0);
  22.     PSlineto(200.0, 400.0);
  23.     PSstroke();
  24.     return self;
  25. }
  26.  
  27.  
  28.